home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 08 - 1992 / 08.02 Jun 92 / Generic Virus Detection / MacOps.c < prev   
Encoding:
C/C++ Source or Header  |  1992-05-26  |  305 b   |  17 lines  |  [TEXT/MPS ]

  1. /* macops.c : Macintosh Toolbox operations for dynamic */
  2.  
  3. #define REMOVE_ALL_EVENTS    0
  4. #define NIL_POINTER            0L
  5.  
  6. void ToolBoxInit()
  7. {
  8.     InitGraf( &thePort );
  9.     InitFonts();
  10.     FlushEvents( everyEvent, REMOVE_ALL_EVENTS );
  11.     InitWindows();
  12.     InitMenus();
  13.     TEInit();
  14.     InitDialogs( NIL_POINTER );
  15.     InitCursor();
  16. }
  17.